home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / javaws.jar / javax / jnlp / FileContents.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  557 b   |  26 lines

  1. package javax.jnlp;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5. import java.io.OutputStream;
  6.  
  7. public interface FileContents {
  8.    String getName() throws IOException;
  9.  
  10.    InputStream getInputStream() throws IOException;
  11.  
  12.    OutputStream getOutputStream(boolean var1) throws IOException;
  13.  
  14.    long getLength() throws IOException;
  15.  
  16.    boolean canRead() throws IOException;
  17.  
  18.    boolean canWrite() throws IOException;
  19.  
  20.    JNLPRandomAccessFile getRandomAccessFile(String var1) throws IOException;
  21.  
  22.    long getMaxLength() throws IOException;
  23.  
  24.    long setMaxLength(long var1) throws IOException;
  25. }
  26.